Which of the following is another way to rewrite the code snippet given below?
int a = 1, b = 2, c = 0;if (a < b) c = a;
Answer: Option A
Explanation: